Correct some mistakes in the documentation of the test-expand/collapse-row
authorMatthias Clasen <mclasen@redhat.com>
Wed, 18 Jul 2007 08:56:42 +0000 (08:56 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 18 Jul 2007 08:56:42 +0000 (08:56 +0000)
2007-07-18  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtktreeview.c: Correct some mistakes in the
        documentation of the test-expand/collapse-row signals.
        (#457774, Olivier Andrieu)

svn path=/trunk/; revision=18489

ChangeLog
gtk/gtktreeview.c

index 23d9c741502cb8d0e0017b504c88ce89dc63efad..bbd2a8dc6890500971ebb23b73243ef504dad8f6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-07-18  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtktreeview.c: Correct some mistakes in the 
+       documentation of the test-expand/collapse-row signals.  
+       (#457774, Olivier Andrieu)
+
 2007-07-18  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkicontheme.c: Small cleanups
index b351e4a2201df641878502e127e409988ba0f2f4..e0591a4f489339f7958b1fe0676b66b8c7af0366 100644 (file)
@@ -898,7 +898,7 @@ gtk_tree_view_class_init (GtkTreeViewClass *class)
    * The given row is about to be expanded (show its children nodes). Use this
    * signal if you need to control the expandability of individual rows.
    *
-   * Returns: %TRUE to allow expansion, %FALSE to reject
+   * Returns: %FALSE to allow expansion, %TRUE to reject
    */
   tree_view_signals[TEST_EXPAND_ROW] =
     g_signal_new (I_("test-expand-row"),
@@ -920,7 +920,7 @@ gtk_tree_view_class_init (GtkTreeViewClass *class)
    * The given row is about to be collapsed (hide its children nodes). Use this
    * signal if you need to control the collapsibility of individual rows.
    *
-   * Returns: %TRUE to allow expansion, %FALSE to reject
+   * Returns: %FALSE to allow collapsing, %TRUE to reject
    */
   tree_view_signals[TEST_COLLAPSE_ROW] =
     g_signal_new (I_("test-collapse-row"),